home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / cclib / include / process.h < prev    next >
C/C++ Source or Header  |  1995-11-16  |  735b  |  40 lines

  1. #ifndef PROCESS_H
  2.  
  3. #ifndef IOLIB_H
  4. #include "iolib.h"
  5. #endif
  6.  
  7. #ifdef ANSIC
  8.  
  9. long wb_exec(char *filename, char *procname, char *toolname,
  10.          char *toolwindow, BPTR curdir, struct MsgPort *rport,
  11.          long stk, long pri, Child *child);
  12. long    wbexec(char *name, long stk, long pri);
  13. Child *wbAexec(char *name, long stk, long pri);
  14. long wait_child(Child *wt);
  15. long wait_children(void);
  16. long signal_child(Child *child,unsigned long sig);
  17. long kill(Child *child);
  18. long kill_children(void);
  19. long cliexec(char *cmd);
  20. long exec(char *cmd);
  21.  
  22. #else
  23.  
  24. long wb_exec();
  25. long wbexec();
  26. Child *wbAexec();
  27. long wait_child();
  28. long wait_children();
  29. long signal_child();
  30. long kill();
  31. long kill_children();
  32. long cliexec();
  33. long exec();
  34.  
  35. #endif
  36.  
  37. #endif
  38.  
  39.  
  40.